*{
    box-sizing: border-box;
}

.box-item{
    background-color: hotpink;
    border: 5px solid black;
    width: 200px;
    margin: 20px;
}

.box-item-1{
    /* height: 100px; */
    min-height: 100px;
    flex-shrink: 0;  
}

.box-item-2{
    /* height: 200px; */
    min-height: 200px;
    flex-grow: 2;
    flex-basis: 0;
}

.box-item-3{
    /* height: 300px; */
    min-height: 300px;
    flex-grow: 1;
    flex-basis: 0;
}

.flexbox-container{
    display: flex;
    justify-content: flex-start;
    justify-content: space-evenly;
    /* align-items:flex-end ;
    align-items:flex-start ;
    align-items:center ; */

    /* align-items:stretch ;
    align-content: center;
    align-content: start;
    align-content: space-between;
    align-content: space-around;
    align-content: space-evenly; */
    
    /* align-content: stretch;
    flex-wrap: wrap; */
}